From: Timothée Ravier Date: Wed, 31 Jan 2024 14:38:31 +0000 (+0100) Subject: grub2-15_ostree: Graceful exit if /etc/default/grub doesn't exist X-Git-Tag: archive/raspbian/2024.8-1+rpi1^2~7^2~6^2~6^2~1 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=c281da8352378cbb3ea244ab6d2b557aada32cc4;p=ostree.git grub2-15_ostree: Graceful exit if /etc/default/grub doesn't exist With the new bootupd installation path in Anaconda, the `/etc/default/grub` config file is not written anymore as we are only using BLS configs with new enough bootloaders. We thus don't need to generate (duplicated) legacy boot entries. We still need to keep this logic in place in Atomic Desktops (Silverblue, etc.) until we've actually landed bootupd there and forced a bootloader update for everybody. See: https://github.com/fedora-silverblue/issue-tracker/issues/530 See: https://github.com/fedora-silverblue/issue-tracker/issues/120 See: https://fedoraproject.org/wiki/Changes/FedoraSilverblueBootupd --- diff --git a/src/boot/grub2/grub2-15_ostree b/src/boot/grub2/grub2-15_ostree index ecd618c9..a4c69730 100644 --- a/src/boot/grub2/grub2-15_ostree +++ b/src/boot/grub2/grub2-15_ostree @@ -24,6 +24,12 @@ if ! test -d /ostree/repo; then exit 0 fi +# Gracefully exit if we can not find the grub2 'default' configuration as it is +# the case on new installations with bootupd where it is not needed. +if ! test -f /etc/default/grub; then + exit 0 +fi + # Gracefully exit if the grub2 configuration has BLS enabled, # and the installed version has support for the blscfg module. # Since there is no need to create menu entries for that case.